body {
	background-color:Aquamarine;
}
h1,h2,h3,h4,h5,h6,p,pre,address,table {
	color:DarkBlue;
	font-family:times-new-roman;
}
pre {
	text-align:center;
}
h1,h2,h3,h4,h5,h6 {
	font-size:24px;
}
h6 {
	border:2px solid LightBlue;
	border-radius:32px;
	padding:15px 10px;
	margin:15px;
	display:inline-block;
	position:absolute;
	transform: translate(210%);
}
table,th,td,ul,ol,dl {
	border:2px solid LightBlue;
	border-radius:4px;
	border-style:inset;
}
table {
	border-spacing:8px;
}
td:hover {
	background-color:LightSeaGreen;
}
/*Legal CSS Properties
There is only a very limited selection of CSS properties that are allowed to be used in the colgroup:

width property
visibility property
background properties
border properties
*/
ul,ol,dl {
	
}
list-style-type {
	color:White;
}
address {
	border:4px solid DarkBlue;
	border-radius:8px;
	padding:2px;
	display:inline-block;
}
a:link, a:visited {
	background-color:LightBlue;
	color:DarkBlue;
	padding:5px 10px;
	margin:2px;
	border-radius:4px;
	text-decoration:none;
	display:inline-block;
}
a:hover {
	background-color:Aquamarine;
}
a:active {
	background-color:Black;
	color:Black;
}